math floor python

27

import math
print(math.floor(48.25))
print(math.floor(45.98))
print(math.floor(-38.68))
print(math.floor(-24.99))
>>> import math
>>> math.floor(6.7)
6

Comments

Submit
0 Comments